home *** CD-ROM | disk | FTP | other *** search
/ Adventures with Oslo: Tools & Gadgets / Adventures with Oslo - Tools and Gadgets.ISO / mac / Ad / Mod03 / tnldoor / 00072.ls < prev    next >
Encoding:
Text File  |  1994-09-23  |  419 b   |  18 lines

  1. on mouseUp
  2.   global gBackPack, gTools
  3.   if check(gTools) = 4 then
  4.     if getOne(gBackPack, #prize) <> 0 then
  5.       set gBackPack to [#loan, #prize]
  6.       play movie "@:Puzzles:tnldoor4.dir"
  7.     else
  8.       play movie "@:Puzzles:tnldoor2.dir"
  9.     end if
  10.   else
  11.     if getOne(gBackPack, #prize) <> 0 then
  12.       play movie "@:Puzzles:tnldoor3.dir"
  13.     else
  14.       play movie "@:Puzzles:tnldoor1.dir"
  15.     end if
  16.   end if
  17. end
  18.